import PlaceholderPage from "@/components/placeholders/PlaceholderPage"; /** * /:branch * * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes. * We explicitly await it here to avoid "sync dynamic APIs" runtime errors. */ export default async function BranchPage({ params }) { const resolvedParams = await params; return ( ); }